findshlibs
Find the shared libraries loaded in the current process with a cross platform API.
Documentation
📚 Documentation on docs.rs 📚
Example
Here is an example program that prints out each shared library that is loaded in the process and the addresses where each of its segments are mapped into memory.
extern crate findshlibs;
use ;
Supported OSes
These are the OSes that findshlibs
currently supports:
- Linux
- macOS
If a platform is not supported then a fallback implementation is used that
does nothing. To see if your platform does something at runtime the
TARGET_SUPPORTED
constant can be used.
Is your OS missing here? Send us a pull request!